From 1aa6701ce15e9b4747360908024af988fdcee7a4 Mon Sep 17 00:00:00 2001 From: "chris@kneesaa.uk.xensource.com" Date: Mon, 10 Jul 2006 18:35:07 +0100 Subject: [PATCH] [VMXASSIST] Include all rodata sections into text section. Some versions of ld put non-matched sections into random locations otherwise. Signed-off-by: Christian Limpach --- tools/firmware/vmxassist/vmxassist.ld | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/tools/firmware/vmxassist/vmxassist.ld b/tools/firmware/vmxassist/vmxassist.ld index 5bcc491075..d0950ec6a6 100644 --- a/tools/firmware/vmxassist/vmxassist.ld +++ b/tools/firmware/vmxassist/vmxassist.ld @@ -11,8 +11,7 @@ SECTIONS _btext = .; *(.text) *(.rodata) - *(.rodata.str1.1) - *(.rodata.str1.4) + *(.rodata.*) _etext = .; } -- 2.30.2